home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 November / SGI Freeware 1999 November - Disc 1.iso / dist / fw_cvs.idb / usr / freeware / info / cvs.info-4.z / cvs.info-4 (.txt)
GNU Info File  |  1999-04-16  |  48KB  |  840 lines

  1. This is Info file cvs.info, produced by Makeinfo version 1.67 from the
  2. input file ./cvs.texinfo.
  3. START-INFO-DIR-ENTRY
  4. * CVS: (cvs).          Concurrent Versions System
  5. END-INFO-DIR-ENTRY
  6.    Copyright (C) 1992, 1993 Signum Support AB Copyright (C) 1993, 1994
  7. Free Software Foundation, Inc.
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.    Permission is granted to copy and distribute modified versions of
  12. this manual under the conditions for verbatim copying, provided also
  13. that the entire resulting derived work is distributed under the terms
  14. of a permission notice identical to this one.
  15.    Permission is granted to copy and distribute translations of this
  16. manual into another language, under the above conditions for modified
  17. versions, except that this permission notice may be stated in a
  18. translation approved by the Free Software Foundation.
  19. File: cvs.info,  Node: Informing others,  Next: Concurrency,  Prev: Conflicts example,  Up: Multiple developers
  20. Informing others about commits
  21. ==============================
  22.    It is often useful to inform others when you commit a new revision
  23. of a file.  The `-i' option of the `modules' file, or the `loginfo'
  24. file, can be used to automate this process.  *Note modules::.  *Note
  25. loginfo::.  You can use these features of CVS to, for instance,
  26. instruct CVS to mail a message to all developers, or post a message to
  27. a local newsgroup.
  28. File: cvs.info,  Node: Concurrency,  Next: Watches,  Prev: Informing others,  Up: Multiple developers
  29. Several developers simultaneously attempting to run CVS
  30. =======================================================
  31.    If several developers try to run CVS at the same time, one may get
  32. the following message:
  33.      [11:43:23] waiting for bach's lock in /usr/local/cvsroot/foo
  34.    CVS will try again every 30 seconds, and either continue with the
  35. operation or print the message again, if it still needs to wait.  If a
  36. lock seems to stick around for an undue amount of time, find the person
  37. holding the lock and ask them about the cvs command they are running.
  38. If they aren't running a cvs command, look in the repository directory
  39. mentioned in the message and remove files which they own whose names
  40. start with `#cvs.rfl', `#cvs.wfl', or `#cvs.lock'.
  41.    Note that these locks are to protect CVS's internal data structures
  42. and have no relationship to the word "lock" in the sense used by
  43. RCS--which refers to reserved checkouts (*note Multiple developers::.).
  44.    Any number of people can be reading from a given repository at a
  45. time; only when someone is writing do the locks prevent other people
  46. from reading or writing.
  47.    One might hope for the following property
  48.      If someone commits some changes in one cvs command,
  49.      then an update by someone else will either get all the
  50.      changes, or none of them.
  51.    but CVS does *not* have this property.  For example, given the files
  52.      a/one.c
  53.      a/two.c
  54.      b/three.c
  55.      b/four.c
  56.    if someone runs
  57.      cvs ci a/two.c b/three.c
  58.    and someone else runs `cvs update' at the same time, the person
  59. running `update' might get only the change to `b/three.c' and not the
  60. change to `a/two.c'.
  61. File: cvs.info,  Node: Watches,  Next: Choosing a model,  Prev: Concurrency,  Up: Multiple developers
  62. Mechanisms to track who is editing files
  63. ========================================
  64.    For many groups, use of CVS in its default mode is perfectly
  65. satisfactory.  Users may sometimes go to check in a modification only
  66. to find that another modification has intervened, but they deal with it
  67. and proceed with their check in.  Other groups prefer to be able to
  68. know who is editing what files, so that if two people try to edit the
  69. same file they can choose to talk about who is doing what when rather
  70. than be surprised at check in time.  The features in this section allow
  71. such coordination, while retaining the ability of two developers to
  72. edit the same file at the same time.
  73.    For maximum benefit developers should use `cvs edit' (not `chmod')
  74. to make files read-write to edit them, and `cvs release' (not `rm') to
  75. discard a working directory which is no longer in use, but CVS is not
  76. able to enforce this behavior.
  77. * Menu:
  78. * Setting a watch::             Telling CVS to watch certain files
  79. * Getting Notified::            Telling CVS to notify you
  80. * Editing files::               How to edit a file which is being watched
  81. * Watch information::           Information about who is watching and editing
  82. * Watches Compatibility::       Watches interact poorly with CVS 1.6 or earlier
  83. File: cvs.info,  Node: Setting a watch,  Next: Getting Notified,  Up: Watches
  84. Telling CVS to watch certain files
  85. ----------------------------------
  86.    To enable the watch features, you first specify that certain files
  87. are to be watched.
  88.  - Command: cvs watch on [`-lR'] FILES ...
  89.      Specify that developers should run `cvs edit' before editing
  90.      FILES.  CVS will create working copies of FILES read-only, to
  91.      remind developers to run the `cvs edit' command before working on
  92.      them.
  93.      If FILES includes the name of a directory, CVS arranges to watch
  94.      all files added to the corresponding repository directory, and
  95.      sets a default for files added in the future; this allows the user
  96.      to set notification policies on a per-directory basis.  The
  97.      contents of the directory are processed recursively, unless the
  98.      `-l' option is given.  The `-R' option can be used to force
  99.      recursion if the `-l' option is set in `~/.cvsrc' (*note
  100.      ~/.cvsrc::.).
  101.      If FILES is omitted, it defaults to the current directory.
  102.  - Command: cvs watch off [`-lR'] FILES ...
  103.      Do not provide notification about work on FILES.  CVS will create
  104.      working copies of FILES read-write.
  105.      The FILES and options are processed as for `cvs watch on'.
  106. File: cvs.info,  Node: Getting Notified,  Next: Editing files,  Prev: Setting a watch,  Up: Watches
  107. Telling CVS to notify you
  108. -------------------------
  109.    You can tell CVS that you want to receive notifications about
  110. various actions taken on a file.  You can do this without using `cvs
  111. watch on' for the file, but generally you will want to use `cvs watch
  112. on', so that developers use the `cvs edit' command.
  113.  - Command: cvs watch add [`-a' ACTION] [`-lR'] FILES ...
  114.      Add the current user to the list of people to receive notification
  115.      of work done on FILES.
  116.      The `-a' option specifies what kinds of events CVS should notify
  117.      the user about.  ACTION is one of the following:
  118.     `edit'
  119.           Another user has applied the `cvs edit' command (described
  120.           below) to a file.
  121.     `unedit'
  122.           Another user has applied the `cvs unedit' command (described
  123.           below) or the `cvs release' command to a file, or has deleted
  124.           the file and allowed `cvs update' to recreate it.
  125.     `commit'
  126.           Another user has committed changes to a file.
  127.     `all'
  128.           All of the above.
  129.     `none'
  130.           None of the above.  (This is useful with `cvs edit',
  131.           described below.)
  132.      The `-a' option may appear more than once, or not at all.  If
  133.      omitted, the action defaults to `all'.
  134.      The FILES and options are processed as for the `cvs watch'
  135.      commands.
  136.  - Command: cvs watch remove [`-a' ACTION] [`-lR'] FILES ...
  137.      Remove a notification request established using `cvs watch add';
  138.      the arguments are the same.  If the `-a' option is present, only
  139.      watches for the specified actions are removed.
  140.    When the conditions exist for notification, CVS calls the `notify'
  141. administrative file.  Edit `notify' as one edits the other
  142. administrative files (*note Intro administrative files::.).  This file
  143. follows the usual conventions for administrative files (*note
  144. syntax::.), where each line is a regular expression followed by a
  145. command to execute.  The command should contain a single ocurrence of
  146. `%s' which will be replaced by the user to notify; the rest of the
  147. information regarding the notification will be supplied to the command
  148. on standard input.  The standard thing to put in the `notify' file is
  149. the single line:
  150.      ALL mail %s -s \"CVS notification\"
  151.    This causes users to be notified by electronic mail.
  152.    Note that if you set this up in the straightforward way, users
  153. receive notifications on the server machine.  One could of course write
  154. a `notify' script which directed notifications elsewhere, but to make
  155. this easy, CVS allows you to associate a notification address for each
  156. user.  To do so create a file `users' in `CVSROOT' with a line for each
  157. user in the format USER:VALUE.  Then instead of passing the name of the
  158. user to be notified to `notify', CVS will pass the VALUE (normally an
  159. email address on some other machine).
  160.    CVS does not notify you for your own changes.  Currently this check
  161. is done based on whether the user name of the person taking the action
  162. which triggers notification matches the user name of the person getting
  163. notification.  In fact, in general, the watches features only track one
  164. edit by each user.  It probably would be more useful if watches tracked
  165. each working directory separately, so this behavior might be worth
  166. changing.
  167. File: cvs.info,  Node: Editing files,  Next: Watch information,  Prev: Getting Notified,  Up: Watches
  168. How to edit a file which is being watched
  169. -----------------------------------------
  170.    Since a file which is being watched is checked out read-only, you
  171. cannot simply edit it.  To make it read-write, and inform others that
  172. you are planning to edit it, use the `cvs edit' command.  Some systems
  173. call this a "checkout", but CVS uses that term for obtaining a copy of
  174. the sources (*note Getting the source::.), an operation which those
  175. systems call a "get" or a "fetch".
  176.  - Command: cvs edit [OPTIONS] FILES ...
  177.      Prepare to edit the working files FILES.  CVS makes the FILES
  178.      read-write, and notifies users who have requested `edit'
  179.      notification for any of FILES.
  180.      The `cvs edit' command accepts the same OPTIONS as the `cvs watch
  181.      add' command, and establishes a temporary watch for the user on
  182.      FILES; CVS will remove the watch when FILES are `unedit'ed or
  183.      `commit'ted.  If the user does not wish to receive notifications,
  184.      she should specify `-a none'.
  185.      The FILES and options are processed as for the `cvs watch'
  186.      commands.
  187.      *Caution:* If the `PreservePermissions' option is enabled in the
  188.      repository (*note config::.), CVS will not change the permissions
  189.      on any of the FILES.  The reason for this change is to ensure that
  190.      using `cvs edit' does not interfere with the ability to store file
  191.      permissions in the CVS repository.
  192.    Normally when you are done with a set of changes, you use the `cvs
  193. commit' command, which checks in your changes and returns the watched
  194. files to their usual read-only state.  But if you instead decide to
  195. abandon your changes, or not to make any changes, you can use the `cvs
  196. unedit' command.
  197.  - Command: cvs unedit [`-lR'] FILES ...
  198.      Abandon work on the working files FILES, and revert them to the
  199.      repository versions on which they are based.  CVS makes those
  200.      FILES read-only for which users have requested notification using
  201.      `cvs watch on'.  CVS notifies users who have requested `unedit'
  202.      notification for any of FILES.
  203.      The FILES and options are processed as for the `cvs watch'
  204.      commands.
  205.      If watches are not in use, the `unedit' command probably does not
  206.      work, and the way to revert to the repository version is to remove
  207.      the file and then use `cvs update' to get a new copy.  The meaning
  208.      is not precisely the same; removing and updating may also bring in
  209.      some changes which have been made in the repository since the last
  210.      time you updated.
  211.    When using client/server CVS, you can use the `cvs edit' and `cvs
  212. unedit' commands even if CVS is unable to succesfully communicate with
  213. the server; the notifications will be sent upon the next successful CVS
  214. command.
  215. File: cvs.info,  Node: Watch information,  Next: Watches Compatibility,  Prev: Editing files,  Up: Watches
  216. Information about who is watching and editing
  217. ---------------------------------------------
  218.  - Command: cvs watchers [`-lR'] FILES ...
  219.      List the users currently watching changes to FILES.  The report
  220.      includes the files being watched, and the mail address of each
  221.      watcher.
  222.      The FILES and options are processed as for the `cvs watch'
  223.      commands.
  224.  - Command: cvs editors [`-lR'] FILES ...
  225.      List the users currently working on FILES.  The report includes
  226.      the mail address of each user, the time when the user began
  227.      working with the file, and the host and path of the working
  228.      directory containing the file.
  229.      The FILES and options are processed as for the `cvs watch'
  230.      commands.
  231. File: cvs.info,  Node: Watches Compatibility,  Prev: Watch information,  Up: Watches
  232. Using watches with old versions of CVS
  233. --------------------------------------
  234.    If you use the watch features on a repository, it creates `CVS'
  235. directories in the repository and stores the information about watches
  236. in that directory.  If you attempt to use CVS 1.6 or earlier with the
  237. repository, you get an error message such as the following (all on one
  238. line):
  239.      cvs update: cannot open CVS/Entries for reading:
  240.      No such file or directory
  241.    and your operation will likely be aborted.  To use the watch
  242. features, you must upgrade all copies of CVS which use that repository
  243. in local or server mode.  If you cannot upgrade, use the `watch off' and
  244. `watch remove' commands to remove all watches, and that will restore
  245. the repository to a state which CVS 1.6 can cope with.
  246. File: cvs.info,  Node: Choosing a model,  Prev: Watches,  Up: Multiple developers
  247. Choosing between reserved or unreserved checkouts
  248. =================================================
  249.    Reserved and unreserved checkouts each have pros and cons.  Let it
  250. be said that a lot of this is a matter of opinion or what works given
  251. different groups' working styles, but here is a brief description of
  252. some of the issues.  There are many ways to organize a team of
  253. developers.  CVS does not try to enforce a certain organization.  It is
  254. a tool that can be used in several ways.
  255.    Reserved checkouts can be very counter-productive.  If two persons
  256. want to edit different parts of a file, there may be no reason to
  257. prevent either of them from doing so.  Also, it is common for someone
  258. to take out a lock on a file, because they are planning to edit it, but
  259. then forget to release the lock.
  260.    People, especially people who are familiar with reserved checkouts,
  261. often wonder how often conflicts occur if unreserved checkouts are
  262. used, and how difficult they are to resolve.  The experience with many
  263. groups is that they occur rarely and usually are relatively
  264. straightforward to resolve.
  265.    The rarity of serious conflicts may be surprising, until one realizes
  266. that they occur only when two developers disagree on the proper design
  267. for a given section of code; such a disagreement suggests that the team
  268. has not been communicating properly in the first place.  In order to
  269. collaborate under *any* source management regimen, developers must
  270. agree on the general design of the system; given this agreement,
  271. overlapping changes are usually straightforward to merge.
  272.    In some cases unreserved checkouts are clearly inappropriate.  If no
  273. merge tool exists for the kind of file you are managing (for example
  274. word processor files or files edited by Computer Aided Design
  275. programs), and it is not desirable to change to a program which uses a
  276. mergeable data format, then resolving conflicts is going to be
  277. unpleasant enough that you generally will be better off to simply avoid
  278. the conflicts instead, by using reserved checkouts.
  279.    The watches features described above in *Note Watches:: can be
  280. considered to be an intermediate model between reserved checkouts and
  281. unreserved checkouts.  When you go to edit a file, it is possible to
  282. find out who else is editing it.  And rather than having the system
  283. simply forbid both people editing the file, it can tell you what the
  284. situation is and let you figure out whether it is a problem in that
  285. particular case or not.  Therefore, for some groups it can be
  286. considered the best of both the reserved checkout and unreserved
  287. checkout worlds.
  288. File: cvs.info,  Node: Revision management,  Next: Keyword substitution,  Prev: Multiple developers,  Up: Top
  289. Revision management
  290. *******************
  291.    If you have read this far, you probably have a pretty good grasp on
  292. what CVS can do for you.  This chapter talks a little about things that
  293. you still have to decide.
  294.    If you are doing development on your own using CVS you could
  295. probably skip this chapter.  The questions this chapter takes up become
  296. more important when more than one person is working in a repository.
  297. * Menu:
  298. * When to commit::              Some discussion on the subject
  299. File: cvs.info,  Node: When to commit,  Up: Revision management
  300. When to commit?
  301. ===============
  302.    Your group should decide which policy to use regarding commits.
  303. Several policies are possible, and as your experience with CVS grows
  304. you will probably find out what works for you.
  305.    If you commit files too quickly you might commit files that do not
  306. even compile.  If your partner updates his working sources to include
  307. your buggy file, he will be unable to compile the code.  On the other
  308. hand, other persons will not be able to benefit from the improvements
  309. you make to the code if you commit very seldom, and conflicts will
  310. probably be more common.
  311.    It is common to only commit files after making sure that they can be
  312. compiled.  Some sites require that the files pass a test suite.
  313. Policies like this can be enforced using the commitinfo file (*note
  314. commitinfo::.), but you should think twice before you enforce such a
  315. convention.  By making the development environment too controlled it
  316. might become too regimented and thus counter-productive to the real
  317. goal, which is to get software written.
  318. File: cvs.info,  Node: Keyword substitution,  Next: Tracking sources,  Prev: Revision management,  Up: Top
  319. Keyword substitution
  320. ********************
  321.    As long as you edit source files inside your working copy of a
  322. module you can always find out the state of your files via `cvs status'
  323. and `cvs log'.  But as soon as you export the files from your
  324. development environment it becomes harder to identify which revisions
  325. they are.
  326.    CVS can use a mechanism known as "keyword substitution" (or "keyword
  327. expansion") to help identifying the files.  Embedded strings of the form
  328. `$KEYWORD$' and `$KEYWORD:...$' in a file are replaced with strings of
  329. the form `$KEYWORD:VALUE$' whenever you obtain a new revision of the
  330. file.
  331. * Menu:
  332. * Keyword list::                Keywords
  333. * Using keywords::              Using keywords
  334. * Avoiding substitution::       Avoiding substitution
  335. * Substitution modes::          Substitution modes
  336. * Log keyword::                 Problems with the $Log$ keyword.
  337. File: cvs.info,  Node: Keyword list,  Next: Using keywords,  Up: Keyword substitution
  338. Keyword List
  339. ============
  340.    This is a list of the keywords:
  341. `$Author$'
  342.      The login name of the user who checked in the revision.
  343. `$Date$'
  344.      The date and time (UTC) the revision was checked in.
  345. `$Header$'
  346.      A standard header containing the full pathname of the RCS file,
  347.      the revision number, the date (UTC), the author, the state, and
  348.      the locker (if locked).  Files will normally never be locked when
  349.      you use CVS.
  350. `$Id$'
  351.      Same as `$Header$', except that the RCS filename is without a path.
  352. `$Name$'
  353.      Tag name used to check out this file.
  354. `$Locker$'
  355.      The login name of the user who locked the revision (empty if not
  356.      locked, and thus almost always useless when you are using CVS).
  357. `$Log$'
  358.      The log message supplied during commit, preceded by a header
  359.      containing the RCS filename, the revision number, the author, and
  360.      the date (UTC).  Existing log messages are *not* replaced.
  361.      Instead, the new log message is inserted after `$Log:...$'.  Each
  362.      new line is prefixed with the same string which precedes the
  363.      `$Log' keyword.  For example, if the file contains
  364.             /* Here is what people have been up to:
  365.              *
  366.              * $Log: frob.c,v $
  367.              * Revision 1.1  1997/01/03 14:23:51  joe
  368.              * Add the superfrobnicate option
  369.              *
  370.              */
  371.      then additional lines which are added when expanding the `$Log'
  372.      keyword will be preceded by `   * '.  Unlike previous versions of
  373.      CVS and RCS, the "comment leader" from the RCS file is not used.
  374.      The `$Log' keyword is useful for accumulating a complete change
  375.      log in a source file, but for several reasons it can be
  376.      problematic.  *Note Log keyword::.
  377. `$RCSfile$'
  378.      The name of the RCS file without a path.
  379. `$Revision$'
  380.      The revision number assigned to the revision.
  381. `$Source$'
  382.      The full pathname of the RCS file.
  383. `$State$'
  384.      The state assigned to the revision.  States can be assigned with
  385.      `cvs admin -s'--see *Note admin options::.
  386. File: cvs.info,  Node: Using keywords,  Next: Avoiding substitution,  Prev: Keyword list,  Up: Keyword substitution
  387. Using keywords
  388. ==============
  389.    To include a keyword string you simply include the relevant text
  390. string, such as `$Id$', inside the file, and commit the file.  CVS will
  391. automatically expand the string as part of the commit operation.
  392.    It is common to embed the `$Id$' string in the source files so that
  393. it gets passed through to generated files.  For example, if you are
  394. managing computer program source code, you might include a variable
  395. which is initialized to contain that string.  Or some C compilers may
  396. provide a `#pragma ident' directive.  Or a document management system
  397. might provide a way to pass a string through to generated files.
  398.    The `ident' command (which is part of the RCS package) can be used
  399. to extract keywords and their values from a file.  This can be handy
  400. for text files, but it is even more useful for extracting keywords from
  401. binary files.
  402.      $ ident samp.c
  403.      samp.c:
  404.           $Id: samp.c,v 1.5 1993/10/19 14:57:32 ceder Exp $
  405.      $ gcc samp.c
  406.      $ ident a.out
  407.      a.out:
  408.           $Id: samp.c,v 1.5 1993/10/19 14:57:32 ceder Exp $
  409.    SCCS is another popular revision control system.  It has a command,
  410. `what', which is very similar to `ident' and used for the same purpose.
  411. Many sites without RCS have SCCS.  Since `what' looks for the
  412. character sequence `@(#)' it is easy to include keywords that are
  413. detected by either command.  Simply prefix the RCS keyword with the
  414. magic SCCS phrase, like this:
  415.      static char *id="@(#) $Id: ab.c,v 1.5 1993/10/19 14:57:32 ceder Exp $";
  416. File: cvs.info,  Node: Avoiding substitution,  Next: Substitution modes,  Prev: Using keywords,  Up: Keyword substitution
  417. Avoiding substitution
  418. =====================
  419.    Keyword substitution has its disadvantages.  Sometimes you might
  420. want the literal text string `$Author$' to appear inside a file without
  421. CVS interpreting it as a keyword and expanding it into something like
  422. `$Author: ceder $'.
  423.    There is unfortunately no way to selectively turn off keyword
  424. substitution.  You can use `-ko' (*note Substitution modes::.) to turn
  425. off keyword substitution entirely.
  426.    In many cases you can avoid using keywords in the source, even
  427. though they appear in the final product.  For example, the source for
  428. this manual contains `$@asis{}Author$' whenever the text `$Author$'
  429. should appear.  In `nroff' and `troff' you can embed the null-character
  430. `\&' inside the keyword for a similar effect.
  431. File: cvs.info,  Node: Substitution modes,  Next: Log keyword,  Prev: Avoiding substitution,  Up: Keyword substitution
  432. Substitution modes
  433. ==================
  434.    Each file has a stored default substitution mode, and each working
  435. directory copy of a file also has a substitution mode.  The former is
  436. set by the `-k' option to `cvs add' and `cvs admin'; the latter is set
  437. by the `-k' or `-A' options to `cvs checkout' or `cvs update'.  `cvs
  438. diff' also has a `-k' option.  For some examples, see *Note Binary
  439. files::.
  440.    The modes available are:
  441. `-kkv'
  442.      Generate keyword strings using the default form, e.g.  `$Revision:
  443.      5.7 $' for the `Revision' keyword.
  444. `-kkvl'
  445.      Like `-kkv', except that a locker's name is always inserted if the
  446.      given revision is currently locked.  This option is normally not
  447.      useful when CVS is used.
  448. `-kk'
  449.      Generate only keyword names in keyword strings; omit their values.
  450.      For example, for the `Revision' keyword, generate the string
  451.      `$Revision$' instead of `$Revision: 5.7 $'.  This option is useful
  452.      to ignore differences due to keyword substitution when comparing
  453.      different revisions of a file.
  454. `-ko'
  455.      Generate the old keyword string, present in the working file just
  456.      before it was checked in.  For example, for the `Revision'
  457.      keyword, generate the string `$Revision: 1.1 $' instead of
  458.      `$Revision: 5.7 $' if that is how the string appeared when the
  459.      file was checked in.
  460. `-kb'
  461.      Like `-ko', but also inhibit conversion of line endings between
  462.      the canonical form in which they are stored in the repository
  463.      (linefeed only), and the form appropriate to the operating system
  464.      in use on the client.  For systems, like unix, which use linefeed
  465.      only to terminate lines, this is the same as `-ko'.  For more
  466.      information on binary files, see *Note Binary files::.
  467. `-kv'
  468.      Generate only keyword values for keyword strings.  For example,
  469.      for the `Revision' keyword, generate the string `5.7' instead of
  470.      `$Revision: 5.7 $'.  This can help generate files in programming
  471.      languages where it is hard to strip keyword delimiters like
  472.      `$Revision: $' from a string.  However, further keyword
  473.      substitution cannot be performed once the keyword names are
  474.      removed, so this option should be used with care.
  475.      One often would like to use `-kv' with `cvs export'--*note
  476.      export::..  But be aware that doesn't handle an export containing
  477.      binary files correctly.
  478. File: cvs.info,  Node: Log keyword,  Prev: Substitution modes,  Up: Keyword substitution
  479. Problems with the $Log$ keyword.
  480. ================================
  481.    The `$Log$' keyword is somewhat controversial.  As long as you are
  482. working on your development system the information is easily accessible
  483. even if you do not use the `$Log$' keyword--just do a `cvs log'.  Once
  484. you export the file the history information might be useless anyhow.
  485.    A more serious concern is that CVS is not good at handling `$Log$'
  486. entries when a branch is merged onto the main trunk.  Conflicts often
  487. result from the merging operation.
  488.    People also tend to "fix" the log entries in the file (correcting
  489. spelling mistakes and maybe even factual errors).  If that is done the
  490. information from `cvs log' will not be consistent with the information
  491. inside the file.  This may or may not be a problem in real life.
  492.    It has been suggested that the `$Log$' keyword should be inserted
  493. *last* in the file, and not in the files header, if it is to be used at
  494. all.  That way the long list of change messages will not interfere with
  495. everyday source file browsing.
  496. File: cvs.info,  Node: Tracking sources,  Next: Builds,  Prev: Keyword substitution,  Up: Top
  497. Tracking third-party sources
  498. ****************************
  499.    If you modify a program to better fit your site, you probably want
  500. to include your modifications when the next release of the program
  501. arrives.  CVS can help you with this task.
  502.    In the terminology used in CVS, the supplier of the program is
  503. called a "vendor".  The unmodified distribution from the vendor is
  504. checked in on its own branch, the "vendor branch".  CVS reserves branch
  505. 1.1.1 for this use.
  506.    When you modify the source and commit it, your revision will end up
  507. on the main trunk.  When a new release is made by the vendor, you
  508. commit it on the vendor branch and copy the modifications onto the main
  509. trunk.
  510.    Use the `import' command to create and update the vendor branch.
  511. When you import a new file, the vendor branch is made the `head'
  512. revision, so anyone that checks out a copy of the file gets that
  513. revision.  When a local modification is committed it is placed on the
  514. main trunk, and made the `head' revision.
  515. * Menu:
  516. * First import::                Importing a module for the first time
  517. * Update imports::              Updating a module with the import command
  518. * Reverting local changes::     Reverting a module to the latest vendor release
  519. * Binary files in imports::     Binary files require special handling
  520. * Keywords in imports::         Keyword substitution might be undesirable
  521. * Multiple vendor branches::    What if you get sources from several places?
  522. File: cvs.info,  Node: First import,  Next: Update imports,  Up: Tracking sources
  523. Importing a module for the first time
  524. =====================================
  525.    Use the `import' command to check in the sources for the first time.
  526. When you use the `import' command to track third-party sources, the
  527. "vendor tag" and "release tags" are useful.  The "vendor tag" is a
  528. symbolic name for the branch (which is always 1.1.1, unless you use the
  529. `-b BRANCH' flag--*Note Multiple vendor branches::.).  The "release
  530. tags" are symbolic names for a particular release, such as `FSF_0_04'.
  531.    Note that `import' does *not* change the directory in which you
  532. invoke it.  In particular, it does not set up that directory as a CVS
  533. working directory; if you want to work with the sources import them
  534. first and then check them out into a different directory (*note Getting
  535. the source::.).
  536.    Suppose you have the sources to a program called `wdiff' in a
  537. directory `wdiff-0.04', and are going to make private modifications
  538. that you want to be able to use even when new releases are made in the
  539. future.  You start by importing the source to your repository:
  540.      $ cd wdiff-0.04
  541.      $ cvs import -m "Import of FSF v. 0.04" fsf/wdiff FSF_DIST WDIFF_0_04
  542.    The vendor tag is named `FSF_DIST' in the above example, and the
  543. only release tag assigned is `WDIFF_0_04'.
  544. File: cvs.info,  Node: Update imports,  Next: Reverting local changes,  Prev: First import,  Up: Tracking sources
  545. Updating a module with the import command
  546. =========================================
  547.    When a new release of the source arrives, you import it into the
  548. repository with the same `import' command that you used to set up the
  549. repository in the first place.  The only difference is that you specify
  550. a different release tag this time.
  551.      $ tar xfz wdiff-0.05.tar.gz
  552.      $ cd wdiff-0.05
  553.      $ cvs import -m "Import of FSF v. 0.05" fsf/wdiff FSF_DIST WDIFF_0_05
  554.    For files that have not been modified locally, the newly created
  555. revision becomes the head revision.  If you have made local changes,
  556. `import' will warn you that you must merge the changes into the main
  557. trunk, and tell you to use `checkout -j' to do so.
  558.      $ cvs checkout -jFSF_DIST:yesterday -jFSF_DIST wdiff
  559. The above command will check out the latest revision of `wdiff',
  560. merging the changes made on the vendor branch `FSF_DIST' since
  561. yesterday into the working copy.  If any conflicts arise during the
  562. merge they should be resolved in the normal way (*note Conflicts
  563. example::.).  Then, the modified files may be committed.
  564.    Using a date, as suggested above, assumes that you do not import
  565. more than one release of a product per day. If you do, you can always
  566. use something like this instead:
  567.      $ cvs checkout -jWDIFF_0_04 -jWDIFF_0_05 wdiff
  568. In this case, the two above commands are equivalent.
  569. File: cvs.info,  Node: Reverting local changes,  Next: Binary files in imports,  Prev: Update imports,  Up: Tracking sources
  570. Reverting to the latest vendor release
  571. ======================================
  572.    You can also revert local changes completely and return to the
  573. latest vendor release by changing the `head' revision back to the
  574. vendor branch on all files.  For example, if you have a checked-out
  575. copy of the sources in `~/work.d/wdiff', and you want to revert to the
  576. vendor's version for all the files in that directory, you would type:
  577.      $ cd ~/work.d/wdiff
  578.      $ cvs admin -bWDIFF .
  579. You must specify the `-bWDIFF' without any space after the `-b'.  *Note
  580. admin options::.
  581. File: cvs.info,  Node: Binary files in imports,  Next: Keywords in imports,  Prev: Reverting local changes,  Up: Tracking sources
  582. How to handle binary files with cvs import
  583. ==========================================
  584.    Use the `-k' wrapper option to tell import which files are binary.
  585. *Note Wrappers::.
  586. File: cvs.info,  Node: Keywords in imports,  Next: Multiple vendor branches,  Prev: Binary files in imports,  Up: Tracking sources
  587. How to handle keyword substitution with cvs import
  588. ==================================================
  589.    The sources which you are importing may contain keywords (*note
  590. Keyword substitution::.).  For example, the vendor may use CVS or some
  591. other system which uses similar keyword expansion syntax.  If you just
  592. import the files in the default fashion, then the keyword expansions
  593. supplied by the vendor will be replaced by keyword expansions supplied
  594. by your own copy of CVS.  It may be more convenient to maintain the
  595. expansions supplied by the vendor, so that this information can supply
  596. information about the sources that you imported from the vendor.
  597.    To maintain the keyword expansions supplied by the vendor, supply
  598. the `-ko' option to `cvs import' the first time you import the file.
  599. This will turn off keyword expansion for that file entirely, so if you
  600. want to be more selective you'll have to think about what you want and
  601. use the `-k' option to `cvs update' or `cvs admin' as appropriate.
  602. File: cvs.info,  Node: Multiple vendor branches,  Prev: Keywords in imports,  Up: Tracking sources
  603. Multiple vendor branches
  604. ========================
  605.    All the examples so far assume that there is only one vendor from
  606. which you are getting sources.  In some situations you might get
  607. sources from a variety of places.  For example, suppose that you are
  608. dealing with a project where many different people and teams are
  609. modifying the software.  There are a variety of ways to handle this,
  610. but in some cases you have a bunch of source trees lying around and
  611. what you want to do more than anything else is just to all put them in
  612. CVS so that you at least have them in one place.
  613.    For handling situations in which there may be more than one vendor,
  614. you may specify the `-b' option to `cvs import'.  It takes as an
  615. argument the vendor branch to import to.  The default is `-b 1.1.1'.
  616.    For example, suppose that there are two teams, the red team and the
  617. blue team, that are sending you sources.  You want to import the red
  618. team's efforts to branch 1.1.1 and use the vendor tag RED.  You want to
  619. import the blue team's efforts to branch 1.1.3 and use the vendor tag
  620. BLUE.  So the commands you might use are:
  621.      $ cvs import dir RED RED_1-0
  622.      $ cvs import -b 1.1.3 dir BLUE BLUE_1-5
  623.    Note that if your vendor tag does not match your `-b' option, CVS
  624. will not detect this case!  For example,
  625.      $ cvs import -b 1.1.3 dir RED RED_1-0
  626. Be careful; this kind of mismatch is sure to sow confusion or worse.  I
  627. can't think of a useful purpose for the ability to specify a mismatch
  628. here, but if you discover such a use, don't.  CVS is likely to make this
  629. an error in some future release.
  630. File: cvs.info,  Node: Builds,  Next: Special Files,  Prev: Tracking sources,  Up: Top
  631. How your build system interacts with CVS
  632. ****************************************
  633.    As mentioned in the introduction, CVS does not contain software for
  634. building your software from source code.  This section describes how
  635. various aspects of your build system might interact with CVS.
  636.    One common question, especially from people who are accustomed to
  637. RCS, is how to make their build get an up to date copy of the sources.
  638. The answer to this with CVS is two-fold.  First of all, since CVS
  639. itself can recurse through directories, there is no need to modify your
  640. `Makefile' (or whatever configuration file your build tool uses) to
  641. make sure each file is up to date.  Instead, just use two commands,
  642. first `cvs -q update' and then `make' or whatever the command is to
  643. invoke your build tool.  Secondly, you do not necessarily *want* to get
  644. a copy of a change someone else made until you have finished your own
  645. work.  One suggested approach is to first update your sources, then
  646. implement, build and test the change you were thinking of, and then
  647. commit your sources (updating first if necessary).  By periodically (in
  648. between changes, using the approach just described) updating your
  649. entire tree, you ensure that your sources are sufficiently up to date.
  650.    One common need is to record which versions of which source files
  651. went into a particular build.  This kind of functionality is sometimes
  652. called "bill of materials" or something similar.  The best way to do
  653. this with CVS is to use the `tag' command to record which versions went
  654. into a given build (*note Tags::.).
  655.    Using CVS in the most straightforward manner possible, each
  656. developer will have a copy of the entire source tree which is used in a
  657. particular build.  If the source tree is small, or if developers are
  658. geographically dispersed, this is the preferred solution.  In fact one
  659. approach for larger projects is to break a project down into smaller
  660. separately-compiled subsystems, and arrange a way of releasing them
  661. internally so that each developer need check out only those subsystems
  662. which are they are actively working on.
  663.    Another approach is to set up a structure which allows developers to
  664. have their own copies of some files, and for other files to access
  665. source files from a central location.  Many people have come up with
  666. some such a system using features such as the symbolic link feature
  667. found in many operating systems, or the `VPATH' feature found in many
  668. versions of `make'.  One build tool which is designed to help with this
  669. kind of thing is Odin (see
  670. `ftp://ftp.cs.colorado.edu/pub/distribs/odin').
  671. File: cvs.info,  Node: Special Files,  Next: CVS commands,  Prev: Builds,  Up: Top
  672. Special Files
  673. *************
  674.    In normal circumstances, CVS works only with regular files.  Every
  675. file in a project is assumed to be persistent; it must be possible to
  676. open, read and close them; and so on.  CVS also ignores file
  677. permissions and ownerships, leaving such issues to be resolved by the
  678. developer at installation time.  In other words, it is not possible to
  679. "check in" a device into a repository; if the device file cannot be
  680. opened, CVS will refuse to handle it.  Files also lose their ownerships
  681. and permissions during repository transactions.
  682.    If the configuration variable `PreservePermissions' (*note
  683. config::.) is set in the repository, CVS will save the following file
  684. characteristics in the repository:
  685.    * user and group ownership
  686.    * permissions
  687.    * major and minor device numbers
  688.    * symbolic links
  689.    * hard link structure
  690.    Using the `PreservePermissions' option affects the behavior of CVS
  691. in several ways.  First, some of the new operations supported by CVS
  692. are not accessible to all users.  In particular, file ownership and
  693. special file characteristics may only be changed by the superuser.
  694. When the `PreservePermissions' configuration variable is set,
  695. therefore, users will have to be `root' in order to perform CVS
  696. operations.
  697.    When `PreservePermissions' is in use, some CVS operations (such as
  698. `cvs status') will not recognize a file's hard link structure, and so
  699. will emit spurious warnings about mismatching hard links.  The reason
  700. is that CVS's internal structure does not make it easy for these
  701. operations to collect all the necessary data about hard links, so they
  702. check for file conflicts with inaccurate data.
  703.    A more subtle difference is that CVS considers a file to have
  704. changed only if its contents have changed (specifically, if the
  705. modification time of the working file does not match that of the
  706. repository's file).  Therefore, if only the permissions, ownership or
  707. hard linkage have changed, or if a device's major or minor numbers have
  708. changed, CVS will not notice.  In order to commit such a change to the
  709. repository, you must force the commit with `cvs commit -f'.  This also
  710. means that if a file's permissions have changed and the repository file
  711. is newer than the working copy, performing `cvs update' will silently
  712. change the permissions on the working copy.
  713.    Changing hard links in a CVS repository is particularly delicate.
  714. Suppose that file `foo' is linked to file `old', but is later relinked
  715. to file `new'.  You can wind up in the unusual situation where,
  716. although `foo', `old' and `new' have all had their underlying link
  717. patterns changed, only `foo' and `new' have been modified, so `old' is
  718. not considered a candidate for checking in.  It can be very easy to
  719. produce inconsistent results this way.  Therefore, we recommend that
  720. when it is important to save hard links in a repository, the prudent
  721. course of action is to `touch' any file whose linkage or status has
  722. changed since the last checkin.  Indeed, it may be wise to `touch *'
  723. before each commit in a directory with complex hard link structures.
  724.    It is worth noting that only regular files may be merged, for
  725. reasons that hopefully are obvious.  If `cvs update' or `cvs checkout
  726. -j' attempts to merge a symbolic link with a regular file, or two
  727. device files for different kinds of devices, CVS will report a conflict
  728. and refuse to perform the merge.  At the same time, `cvs diff' will not
  729. report any differences between these files, since no meaningful textual
  730. comparisons can be made on files which contain no text.
  731.    The `PreservePermissions' features do not work with client/server
  732. CVS.  Another limitation is that hard links must be to other files
  733. within the same directory; hard links across directories are not
  734. supported.
  735. File: cvs.info,  Node: CVS commands,  Next: Invoking CVS,  Prev: Special Files,  Up: Top
  736. Guide to CVS commands
  737. *********************
  738.    This appendix describes the overall structure of CVS commands, and
  739. describes some commands in detail (others are described elsewhere; for
  740. a quick reference to CVS commands, *note Invoking CVS::.).
  741. * Menu:
  742. * Structure::                   Overall structure of CVS commands
  743. * Exit status::                 Indicating CVS's success or failure
  744. * ~/.cvsrc::                    Default options with the ~/.csvrc file
  745. * Global options::              Options you give to the left of cvs_command
  746. * Common options::              Options you give to the right of cvs_command
  747. * admin::                       Administration
  748. * checkout::                    Checkout sources for editing
  749. * commit::                      Check files into the repository
  750. * diff::                        Show differences between revisions
  751. * export::                      Export sources from CVS, similar to checkout
  752. * history::                     Show status of files and users
  753. * import::                      Import sources into CVS, using vendor branches
  754. * log::                         Show log messages for files
  755. * rdiff::                       'patch' format diffs between releases
  756. * release::                     Indicate that a Module is no longer in use
  757. * rtag::                        Add a tag to a module
  758. * tag::                         Add a tag to checked out version
  759. * update::                      Bring work tree in sync with repository
  760. File: cvs.info,  Node: Structure,  Next: Exit status,  Up: CVS commands
  761. Overall structure of CVS commands
  762. =================================
  763.    The overall format of all CVS commands is:
  764.      cvs [ cvs_options ] cvs_command [ command_options ] [ command_args ]
  765. `cvs'
  766.      The name of the CVS program.
  767. `cvs_options'
  768.      Some options that affect all sub-commands of CVS.  These are
  769.      described below.
  770. `cvs_command'
  771.      One of several different sub-commands.  Some of the commands have
  772.      aliases that can be used instead; those aliases are noted in the
  773.      reference manual for that command.  There are only two situations
  774.      where you may omit `cvs_command': `cvs -H' elicits a list of
  775.      available commands, and `cvs -v' displays version information on
  776.      CVS itself.
  777. `command_options'
  778.      Options that are specific for the command.
  779. `command_args'
  780.      Arguments to the commands.
  781.    There is unfortunately some confusion between `cvs_options' and
  782. `command_options'.  `-l', when given as a `cvs_option', only affects
  783. some of the commands.  When it is given as a `command_option' is has a
  784. different meaning, and is accepted by more commands.  In other words,
  785. do not take the above categorization too seriously.  Look at the
  786. documentation instead.
  787. File: cvs.info,  Node: Exit status,  Next: ~/.cvsrc,  Prev: Structure,  Up: CVS commands
  788. CVS's exit status
  789. =================
  790.    CVS can indicate to the calling environment whether it succeeded or
  791. failed by setting its "exit status".  The exact way of testing the exit
  792. status will vary from one operating system to another.  For example in
  793. a unix shell script the `$?' variable will be 0 if the last command
  794. returned a successful exit status, or greater than 0 if the exit status
  795. indicated failure.
  796.    If CVS is successful, it returns a successful status; if there is an
  797. error, it prints an error message and returns a failure status.  The
  798. one exception to this is the `cvs diff' command.  It will return a
  799. successful status if it found no differences, or a failure status if
  800. there were differences or if there was an error.  Because this behavior
  801. provides no good way to detect errors, in the future it is possible that
  802. `cvs diff' will be changed to behave like the other CVS commands.
  803. File: cvs.info,  Node: ~/.cvsrc,  Next: Global options,  Prev: Exit status,  Up: CVS commands
  804. Default options and the ~/.cvsrc file
  805. =====================================
  806.    There are some `command_options' that are used so often that you
  807. might have set up an alias or some other means to make sure you always
  808. specify that option.  One example (the one that drove the
  809. implementation of the `.cvsrc' support, actually) is that many people
  810. find the default output of the `diff' command to be very hard to read,
  811. and that either context diffs or unidiffs are much easier to understand.
  812.    The `~/.cvsrc' file is a way that you can add default options to
  813. `cvs_commands' within cvs, instead of relying on aliases or other shell
  814. scripts.
  815.    The format of the `~/.cvsrc' file is simple.  The file is searched
  816. for a line that begins with the same name as the `cvs_command' being
  817. executed.  If a match is found, then the remainder of the line is split
  818. up (at whitespace characters) into separate options and added to the
  819. command arguments *before* any options from the command line.
  820.    If a command has two names (e.g., `checkout' and `co'), the official
  821. name, not necessarily the one used on the command line, will be used to
  822. match against the file.  So if this is the contents of the user's
  823. `~/.cvsrc' file:
  824.      log -N
  825.      diff -u
  826.      update -P
  827.      checkout -P
  828. the command `cvs checkout foo' would have the `-P' option added to the
  829. arguments, as well as `cvs co foo'.
  830.    With the example file above, the output from `cvs diff foobar' will
  831. be in unidiff format.  `cvs diff -c foobar' will provide context diffs,
  832. as usual.  Getting "old" format diffs would be slightly more
  833. complicated, because `diff' doesn't have an option to specify use of
  834. the "old" format, so you would need `cvs -f diff foobar'.
  835.    In place of the command name you can use `cvs' to specify global
  836. options (*note Global options::.).  For example the following line in
  837. `.cvsrc'
  838.      cvs -z6
  839.    causes CVS to use compression level 6.
  840.